home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_01 / allison / atox4.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-02  |  147 b   |  10 lines

  1. LISTING 11 - An even better version of atox() using strtol()
  2.  
  3. #include <stdlib.h>
  4.  
  5. long atox(char *s)
  6. {
  7.     return strtol(s,NULL,16);
  8. }
  9.  
  10.